page.tsx 211 B

1234567
  1. "use client";
  2. import { ForgotPasswordFormPanel } from "@/components/auth/forgot-password-form-panel";
  3. export default function ForgotPasswordPage() {
  4. return <ForgotPasswordFormPanel layout="fullscreen" />;
  5. }